home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML ConsoleMax.sea / XML ConsoleMax / Required / xml4j.jar / org / w3c / dom / Attr.class (.txt) next >
Encoding:
Java Class File  |  1999-08-30  |  310 b   |  12 lines

  1. package org.w3c.dom;
  2.  
  3. public interface Attr extends Node {
  4.    String getName();
  5.  
  6.    boolean getSpecified();
  7.  
  8.    String getValue();
  9.  
  10.    void setValue(String var1);
  11. }
  12.